@font-face {
    font-family: iraniansans;
    src: url(../font/Iranian\ Sans.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: iraniansans;
}

body{
    font-family: 'Poppins';
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #074173
}

.row {
    width: 80%;
    max-width: 1170px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap :50px;
    padding: 5rem 0;
    overflow-x: hidden;
}

.row .imgWrapper {
    overflow: hidden;
}

.row .imgWrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 8px;
}

.row .imgWrapper:hover img {
    transform: scale(1.25);
}

.row .contentWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

.row .contentWrapper span.textWrapper {
    display: block;
    font-size: 10px;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/*.row .contentWrapper span.textWrapper span {
    background: #383f47;
    display: inline-block;
    width: 70px;
    height: 5px;
    font-size: 10px;
}
*/

.row .contentWrapper h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 20px;
}

.row .contentWrapper p {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 25px;
    color: #fff;
}

.row .contentWrapper a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background: #1E0342;
    color: #fff;
    padding: 15px 40px;
    letter-spacing: 1px;
    user-select: none;
    border-radius: 8px;
    transition: 1.6s;
   
    width: 250px;
    height: 50px;
}

.row .contentWrapper a:hover {
    transform:  translate(-10px) scale(1.2);
    background: #1e0342a3;
}

.acko {
    background-image: url(../img/matrixcode.gif);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 70px;
    font-weight:bold
}